home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1998 August / PC Plus SuperCD 50a Issue 142 (CD142a) (August 1998).iso / handson / supercede / Knowodys / Projects / Hello / 1.0.2 / HelloApplication.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-07-30  |  765 b   |  10 lines

  1. import java.io.IOException;
  2.  
  3. public class HelloApplication {
  4.    public static void main(String[] args) throws IOException {
  5.       System.out.println("\n Hello World\n");
  6.       System.in.read();
  7.       System.exit(0);
  8.    }
  9. }
  10.